{gridName}_full_date

определяет, как отображаются даты в колонках с id='date'

startDateначальная дата события
endDateконечная дата события
evobjectподробности события

Available only in PRO Edition

Example

scheduler.templates.grid_full_date = function(start,end,event){
    if (scheduler.isOneDayEvent(event))
        return scheduler.templates.grid_single_date(start);
    else
        return scheduler.templates.day_date(start)+" – "
        +scheduler.templates.day_date(end);
};

Applicable views:Грид View
Details

Этот template зависит от включенного плагина grid_view.

See also
Наверх